home *** CD-ROM | disk | FTP | other *** search
/ Haight-Ashbury in the Sixties / Haight-Ashbury in the Sixties (1996)(Rockument)(Disc 1 of 2)[Mac-PC].iso / mac / MAIN / TUNEIN / TURNON / TIME / TIMELINE.DIR / 00009_Script_9 < prev    next >
Text File  |  1995-05-17  |  916b  |  32 lines

  1. on startmovie 
  2.   
  3.   set the puppet of sprite 8 = true
  4.   set the constraint of sprite 8 to 9
  5.   
  6.   set the visibility of sprite 2 = false
  7.   set the visibility of sprite 3 = false
  8.   set the visibility of sprite 4 = false
  9.   set the visibility of sprite 5 = false
  10.   set the visibility of sprite 6 = false
  11.   set the visibility of sprite 7 = false
  12.   set the visibility of sprite 8 = false
  13.   
  14. end startmovie
  15. --
  16. --
  17. on SetThePlaList FutureMovie
  18.   global gMovieCount, gPlaylistMasterList, AutoPlayMode,gMainMovie
  19.   
  20.   if count (gPlaylistMasterList) > gMovieCount then
  21.     put getPos(gPlaylistMasterList,FutureMovie) into FuturePosition
  22.     put getAt (gPlaylistMasterList, FuturePosition) into nextMovie
  23.     tell the stage to go to movie nextMovie
  24.     set gMovieCount = FuturePosition
  25.   else
  26.     tell the stage to go to movie  gMainMovie
  27.     set gMovieCount = 0
  28.     
  29.   end if
  30.   
  31. end SetThePlaList
  32.